Stored Procedures [dbo].[BAECartEventFunctionDelete]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@CartEventFunctionIdint4
SQL Script
create procedure [dbo].[BAECartEventFunctionDelete] @CartEventFunctionId as
int
AS
    DELETE
    FROM CartEventFunction
    WHERE CartEventFunctionID = @CartEventFunctionId;

GO
Uses